page.tsx 304 B

12345678910111213141516
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import type { IMainProps } from '@/app/components/share/chat'
  4. import Main from '@/app/components/share/chat'
  5. const Chat: FC<IMainProps> = ({
  6. params,
  7. }: any) => {
  8. return (
  9. <Main params={params} />
  10. )
  11. }
  12. export default React.memo(Chat)